home *** CD-ROM | disk | FTP | other *** search
/ Creative Computers / Creative Computers CD-ROM, Volume 1 (Legendary Design Technologies, Inc.)(1994).iso / shareware / applications / jcgraph / rexx / rotpreset1.rex < prev    next >
OS/2 REXX Batch file  |  1994-11-17  |  328b  |  14 lines

  1. /* RotPreSet1.rex */
  2. /* -------------- */
  3. /* Description: Will set the X,Y and Z rotation value previously set  */
  4. /*              with 'Set1' button.                                   */
  5.  
  6. options results
  7.  
  8. address 'JCGRAPH'
  9.  
  10. if open('Preset','T:RotPreset1','R') then do
  11.   Rotation=readln('Preset')
  12.   'SetRotation ' Rotation
  13. end
  14.